home *** CD-ROM | disk | FTP | other *** search
- #define FNULL ((void (*)()) NULL)
- #define DNULL ((void *) NULL)
-
- typedef
- struct
- {
- unsigned second:5;
- unsigned minute:6;
- unsigned hour:5;
- } FILE_TIME;
-
- typedef
- struct
- {
- unsigned day:5;
- unsigned month:4;
- unsigned year:7;
- } FILE_DATE;
-
- long dirscan(char[], /* Starting Directory */
- char[], /* File Name Mask */
- char, /* File Attribute Mask */
- void (*)(char[]), /* New-Directory Rtn */
- void (*)(char[],struct find_t)); /* New-File Routine */
-